home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFBIND
/
VTAXIS.S
< prev
next >
Wrap
Text File
|
1993-03-26
|
1KB
|
58 lines
;*========================================================================
;* VDIFAST Public Domain VDI bindings.
;*========================================================================
;*------------------------------------------------------------------------
;*
;*------------------------------------------------------------------------
globl _vt_resolution
_vt_resolution:
moveq.l #81,d0
bra do_it
globl _vt_axis
_vt_axis:
moveq.l #82,d0
; fall thru into do_it
do_it:
; .cargs #8,handle.w,xres.w,yres.w,xset.w,yset.w
handle = 8
xres = 10
yres = 12
xset = 14
yset = 18
link a6,#-4
; VContrl #5,d0,,,#2
move.w handle(a6),-(sp) ; contrl[6] ; handle
move.w d0,-(sp) ; contrl[5] ; subfunction
subq.l #2,sp ; contrl[4] ; intout count
move.w #2,-(sp) ; contrl[3] ; intin count
subq.l #2,sp ; contrl[2] ; ptsout count
clr.w -(sp) ; contrl[1] ; ptsin count
move.w #5,-(sp) ; contrl[0] ; opcode
subq.l #4,sp ;* -> ptsout
pea -4(a6) ;* -> intout
subq.l #4,sp ;* -> ptsin
pea xres(a6) ;* -> intin
pea 16(sp) ;* -> contrl
move.l sp,d1
jsr vditrap
move.l xset(a6),a0
move.w -4(a6),(a0)
move.l yset(a6),a0
move.w -2(a6),(a0)
unlk a6
rts
end